home *** CD-ROM | disk | FTP | other *** search
/ Digit Magazine 1999 December / cDigit issue 18 - December 1999.iso / pc / demos / XMLwriter 1.0 Beta shareware / data1.cab / Example_Files / Projects / Examples / Library / Library.xml < prev    next >
Encoding:
Extensible Markup Language  |  1999-08-19  |  1.2 KB  |  45 lines

  1. <?xml version='1.0'?>
  2. <?xml:stylesheet type="text/xsl" href="Library.xsl"?>
  3. <!--
  4.     Copyright 1999 Wattle Software
  5.     Use at your own risk!
  6. -->
  7.  
  8. <library xmlns="x-schema:LibrarySchema.xml"> <!-- declare the Schema which defines this document -->
  9.     <name>Northmead Local Library</name>
  10.     <book hardback="yes">
  11.         <title>C++ Programming for Beginners</title>
  12.         <author>
  13.             <first-name>Claude</first-name>
  14.             <last-name>Schwartz</last-name>
  15.         </author>
  16.         <callno>005.133/C</callno>
  17.         <online_url>http://library/online_books/005133C.html</online_url>
  18.     </book>
  19.     <journal series="XML Users Journal">
  20.         <title>XML Users Journal August 1999</title>
  21.         <date>1999-08-01</date>
  22.         <callno>005.133/C</callno>
  23.     </journal>
  24.     <video>
  25.         <title>Titanic</title>
  26.         <director>
  27.             <name>James Cameron</name>
  28.         </director>
  29.         <callno>643.11/T</callno>
  30.     </video>
  31.     <book>
  32.         <title>The C Programming Language</title>
  33.         <author>
  34.             <first-name>Brian</first-name>
  35.             <last-name>Kernighan</last-name>
  36.         </author>
  37.         <author>
  38.             <first-name>Dennis</first-name>
  39.             <last-name>Ritchie</last-name>
  40.         </author>
  41.         <callno>005.133/C2</callno>
  42.         <online_url>http://library/online_books/005133C2.html</online_url>
  43.     </book>
  44. </library>
  45.